home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscKit / Headers / misckit / MiscAppFile.h < prev    next >
Encoding:
Text File  |  1995-02-06  |  1.3 KB  |  35 lines

  1.  
  2. //
  3. //    MiscAppFile.h -- simple MiscFile subclass for brower leaf diaply of .app
  4. //        Written by Robert Todd Thomas Copyright (c) 1995 by Robert Todd Thomas.
  5. //                Version 1.0.  All rights reserved.
  6. //        This notice may not be removed from this source code.
  7. //
  8. //    This object is included in the MiscKit by permission from the author
  9. //    and its use is governed by the MiscKit license, found in the file
  10. //    "LICENSE.rtf" in the MiscKit distribution.  Please refer to that file
  11. //    for a list of all applicable permissions and restrictions.
  12. //    
  13.  
  14. // This class is somewhat private; the MiscKit main header doesn't include
  15. // it, but the MiscFile examples make use of it for display purposes and
  16. // you may want to do the same.  This class will eventually go away to be
  17. // replaced by something like "MiscWrapper", which will handle other file
  18. // packages besides apps, likely with subclasses for .app, .pkg, etc. so
  19. // that extra information about those packages may be obtained.  What this
  20. // means to you is that if you use it, you do so at your own risk.  When it
  21. // is finally replaced, don't expect compatability defines, etc., since we
  22. // may not deem them worth creating.  Expect to have to change your source!
  23.  
  24. #import <misckit/MiscFile.h>
  25.  
  26. @interface MiscAppFile : MiscFile
  27. {
  28. }
  29.  
  30. - initWithPath: (const char *)fullPath;
  31. - (const char *)name;
  32.  
  33. @end
  34.  
  35.